home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Zuper / Quattro.dir / 00005_Script_5 < prev    next >
Text File  |  1999-02-27  |  361b  |  22 lines

  1. on keyDown
  2.   if the key = "q" then
  3.     set i to 1
  4.     repeat while i < 5
  5.       sound stop i
  6.       set i to i + 1
  7.     end repeat
  8.     go to "black"
  9.   end if
  10. end keyDown
  11.  
  12. on closeWindow
  13.   puppetSound 3, "Explode"
  14.   
  15. on mouseDown
  16.   set i to 1
  17.   repeat while i < 5
  18.     sound stop i
  19.     set i to i + 1
  20.   end repeat
  21.   go to "black"
  22. end mouseDown